web3.js web3.utils.randomHex
web3.utils.randomHex(size)
randomHex ライブラリにより、与えられたバイトサイズの、暗号学的に強い16進数文字列の擬似乱数を生成します。 パラメータ
1. Number
16進数文字列のバイトサイズ
例: 32 を渡すと、32バイトの16進数文字列が返されます。
先頭に 0x がついた64文字の文字列になります。
戻り値
String
ランダムな16進数文字列
サンプルコード
code:example.js
web3.utils.randomHex(32)
"0xa5b9d60f32436310afebcfda832817a68921beb782fabf7915cc0460b443116a"
web3.utils.randomHex(4)
"0x6892ffc6"
web3.utils.randomHex(2)
"0x99d6"
web3.utils.randomHex(1)
"0x9a"
web3.utils.randomHex(0)
"0x"
動作サンプル
原文
検証済